encoding/binary.coder.offset (field)

32 uses

	encoding/binary (current package)
		binary.go#L533: 	offset int
		binary.go#L540: 	x := d.buf[d.offset]
		binary.go#L541: 	d.offset++
		binary.go#L547: 		e.buf[e.offset] = 1
		binary.go#L549: 		e.buf[e.offset] = 0
		binary.go#L551: 	e.offset++
		binary.go#L555: 	x := d.buf[d.offset]
		binary.go#L556: 	d.offset++
		binary.go#L561: 	e.buf[e.offset] = x
		binary.go#L562: 	e.offset++
		binary.go#L566: 	x := d.order.Uint16(d.buf[d.offset : d.offset+2])
		binary.go#L567: 	d.offset += 2
		binary.go#L572: 	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
		binary.go#L573: 	e.offset += 2
		binary.go#L577: 	x := d.order.Uint32(d.buf[d.offset : d.offset+4])
		binary.go#L578: 	d.offset += 4
		binary.go#L583: 	e.order.PutUint32(e.buf[e.offset:e.offset+4], x)
		binary.go#L584: 	e.offset += 4
		binary.go#L588: 	x := d.order.Uint64(d.buf[d.offset : d.offset+8])
		binary.go#L589: 	d.offset += 8
		binary.go#L594: 	e.order.PutUint64(e.buf[e.offset:e.offset+8], x)
		binary.go#L595: 	e.offset += 8
		binary.go#L759: 	d.offset += dataSize(v)
		binary.go#L764: 	zero := e.buf[e.offset : e.offset+n]
		binary.go#L768: 	e.offset += n